crypto/aes.gcmAsm.tagSize (field)

10 uses

	crypto/aes (current package)
		aes_gcm.go#L55: 	g := &gcmAsm{ks: c.enc, nonceSize: nonceSize, tagSize: tagSize}
		aes_gcm.go#L70: 	tagSize int
		aes_gcm.go#L78: 	return g.tagSize
		aes_gcm.go#L123: 	ret, out := sliceForAppend(dst, len(plaintext)+g.tagSize)
		aes_gcm.go#L144: 	if g.tagSize < gcmMinimumTagSize {
		aes_gcm.go#L148: 	if len(ciphertext) < g.tagSize {
		aes_gcm.go#L151: 	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
		aes_gcm.go#L155: 	tag := ciphertext[len(ciphertext)-g.tagSize:]
		aes_gcm.go#L156: 	ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
		aes_gcm.go#L185: 	if subtle.ConstantTimeCompare(expectedTag[:g.tagSize], tag) != 1 {